Xbasic

DIR_CREATE Function

Syntax

N DIR_CREATE(C directory_name)

Arguments

directory_name

The name of the folder to create. If a complete path is not specified, the directory will be created as a sub-directory off the current working directory.

Description

DIR_CREATE() creates the directory specified by Directory_Name.

Example

This statement creates a DATA directory within the A_SPORTS directory.

dir_create("c:\a5\a_sports\data")

See Also